bitkeeper revision 1.691 (4011c6d3g_Q_DeG3-esCCO1ROch6Rw)
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>
Sat, 24 Jan 2004 01:13:55 +0000 (01:13 +0000)
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>
Sat, 24 Jan 2004 01:13:55 +0000 (01:13 +0000)
XenoUtil.py, VBD-HOWTO.txt:
  Fix location of xen vbd dataase file.

docs/VBD-HOWTO.txt
tools/xc/py/XenoUtil.py

index 6a276a83b538d3e6b09030eb111d3eb4e64a5c94..9a13404a0a0be6a4e4cbe79edeb2391e615aa358 100644 (file)
@@ -86,7 +86,7 @@ Virtual Disk Management
 The VD management code runs entirely in userspace.  The code is written in
 Python and can therefore be accessed from custom scripts, as well as from the
 convenience scripts provided.  The underlying VD database is a SQLite database
-in /var/spool/xen_vdisks.sqlite.
+in /var/lib/xen_vdisks.sqlite.
 
 The scripts provided are as follows:
 
@@ -131,7 +131,7 @@ More detail:
 
 When you use vd_format.py to add a device to the free space pool, the device is
 logically split up into extents.  These extents are recorded in the Virtual
-Disk Management database in /var/spool/xen_vdisks.sqlite.
+Disk Management database in /var/lib/xen_vdisks.sqlite.
 
 When you use vd_create.py to add create a virtual disk, some of the extents in
 the free space pool are reallocated for that virtual disk and a record for that
index d038e5d2049196882c80c718464cb4ea2f63da72..ee4dd79edc457a13204c8dca4a6e89cad4d7494f 100644 (file)
@@ -3,9 +3,9 @@ import string, re, os, sys
 ##### Module variables
 
 """Location of the Virtual Disk management database.
-   defaults to /var/spool/xen_vdisks.sqlite
+   defaults to /var/lib/xen_vdisks.sqlite
 """
-VD_DB_FILE = "/var/spool/xen_vdisks.sqlite"
+VD_DB_FILE = "/var/lib/xen_vdisks.sqlite"
 
 """VBD expertise level - determines the strictness of the sanity checking.
   This mode determines the level of complaints when disk sharing occurs